Anillo 3 - Original

An interactive fiction by Mel Hython (2009) - the Inform 7 source text

Home page

Contents
Previous
Next

Complete text
Section 13 - Apagar antorcha

[Apagar antochas]
Instead of switching off a base antorcha thing which is lit:
    if the location is in Cuevas or the location is Copa:
        say "Soplas la antorcha, pero ésta no se apaga.";
        bnw;
        say "Si tuviese pulmones de dragón...";
        bnw;
        say "...bueno, si tuviese pulmones de dragón toda la antorcha quedaría completamente reducida a cenizas tras soplar. Claro. Aunque desde luego eso la apagaría.";
    otherwise:
        say "Haces que tu portador cubra la antorcha con tierra hasta apagarla.";
        bnw;
        say "Lamentablemente eso echa a perder la antorcha completamente.";
        if there is a papel thing (called pap) which is part of noun:
            remove pap from play;
        remove resina from play;
        now noun is not lit.

[También se apaga sola]
Every turn:
    if leno is lit:
        decrease duracion of leno by 1;
        if duracion of leno is 0:
            say "La antorcha se agota. Ahora tan sólo vuelve a ser un pedazo de leña seca.";
            if there is a papel thing (called pap) which is part of leno:
                remove pap from play;
            remove resina from play;
            now leno is not lit;
        otherwise if duracion of leno is 5:
            say "El fuego de la antorcha empieza a ser escaso. Ya no debe quedar demasiado tiempo hasta que se consuma.";
    if hueso is lit:
        decrease duracion of hueso by 1;
        if duracion of hueso is 0:
            say "La antorcha se agota y se apaga. El hueso, muy deteriorado por el fuego, también queda inservible.";
            if there is a papel thing (called pap) which is part of leno:
                remove pap from play;
            remove resina from play;
            now hueso is part of esqueleto;
            now hueso is not lit;
        otherwise if duracion of hueso is 5:
            say "El fuego de la antorcha empieza a ser escaso. Ya no debe quedar demasiado tiempo hasta que se consuma. Además el hueso parece bastante estropeado por el efecto de las llamas.";
    if rama is lit:
        decrease duracion of rama by 1;
        if duracion of rama is 0:
            say "La antorcha se agota. Ahora tan sólo vuelve a ser un pedazo de leña seca.";
            if there is a papel thing (called pap) which is part of rama:
                remove pap from play;
            remove resina from play;
            now rama is not lit;
        otherwise if duracion of rama is 5:
            say "El fuego de la antorcha empieza a ser escaso. Ya no debe quedar demasiado tiempo hasta que se consuma.";
    if machete is lit:
        decrease duracion of machete by 1;
        if duracion of machete is 0:
            say "La antorcha se agota. Ahora tan sólo vuelve a ser un cuchillo largo y sucio.";
            if there is a papel thing (called pap) which is part of machete:
                remove pap from play;
            remove resina from play;
            now machete is not lit;
        otherwise if duracion of machete is 5:
            say "El fuego de la antorcha empieza a ser escaso. Ya no debe quedar demasiado tiempo hasta que se consuma.";